func runtime.bucketMask

22 uses

	runtime (current package)
		map.go#L190: func bucketMask(b uint8) uintptr {
		map.go#L418: 	m := bucketMask(h.B)
		map.go#L479: 	m := bucketMask(h.B)
		map.go#L523: 	m := bucketMask(h.B)
		map.go#L608: 	bucket := hash & bucketMask(h.B)
		map.go#L724: 	bucket := hash & bucketMask(h.B)
		map.go#L849: 	it.startBucket = r & bucketMask(h.B)
		map.go#L935: 				if hash&bucketMask(it.B) != checkBucket {
		map_fast32.go#L30: 		m := bucketMask(h.B)
		map_fast32.go#L70: 		m := bucketMask(h.B)
		map_fast32.go#L114: 	bucket := hash & bucketMask(h.B)
		map_fast32.go#L204: 	bucket := hash & bucketMask(h.B)
		map_fast32.go#L290: 	bucket := hash & bucketMask(h.B)
		map_fast64.go#L30: 		m := bucketMask(h.B)
		map_fast64.go#L70: 		m := bucketMask(h.B)
		map_fast64.go#L114: 	bucket := hash & bucketMask(h.B)
		map_fast64.go#L204: 	bucket := hash & bucketMask(h.B)
		map_fast64.go#L290: 	bucket := hash & bucketMask(h.B)
		map_faststr.go#L81: 	m := bucketMask(h.B)
		map_faststr.go#L176: 	m := bucketMask(h.B)
		map_faststr.go#L225: 	bucket := hash & bucketMask(h.B)
		map_faststr.go#L319: 	bucket := hash & bucketMask(h.B)